home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
pwrclib.exe
/
CLEAR.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-14
|
352 b
|
28 lines
/* Test of new clearscreen function */
#include <dos.h>
#include "cjslib.h"
int clear(int color)
{
union REGS regs;
regs.h.ah=6;
regs.h.al=0;
regs.h.ch=0;
regs.h.cl=0;
regs.h.dh=screen_lines();
regs.h.dl=79;
regs.h.bh=color*16+7;
if (regs.h.dh==0)
regs.h.dh=24;
int86(0x10,®s,®s);
return;
}